home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / missionList.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  3.1 KB  |  106 lines

  1. //
  2. // The mission list is the list of mission displayed to the players
  3. // and admins in the server menu, used on the client side to display
  4. // mission avialable on the Host Server screen, and is is also used
  5. // to initialize the nextMission array which controls which mission
  6. // to load after a mission finishes.
  7. //
  8. // function MissionList::clear();
  9. //
  10. // function MissionList::addMission(%missionName);
  11. //
  12. //    Add a mission to the current mission list.
  13. //    Mission information is extracted from the mission .dsc file.
  14. //    The mission file does not need to be in the base/missions dir.
  15. //
  16. // function MissionList::build()
  17. //
  18. //    Add any missions files that match the missions/*.dsc pattern.
  19. //    This will include any missions in base/misssions/* or missions
  20. //    in mods as long as they are in a missions subdirectory.
  21. //
  22. // function MissionList::initNextMission()
  23. //
  24. //    Initialize the nextMission array based on the current mission list.
  25. //    When a mission changes it references the nextMission array to determin
  26. //    which mission to load next.  The function initializes the array based
  27. //    on mission type, so missions don't cycle to a mission of a different
  28. //    type.
  29. //    The array is easy to initialize manually:
  30. //       $nextMission["CrissCross"] = "Raindance";
  31. //       $nextMission["Raindance"] = "CrissCross";
  32. //
  33.  
  34. function MissionList::clear()
  35. {
  36.    $MLIST::Count = 0;
  37.    $MLIST::TypeCount = 1;
  38.    $MLIST::Type[0] = "All Types";
  39.    $MLIST::MissionList[0] = "";
  40. }  
  41.  
  42. function MissionList::addMission(%mission)
  43. {
  44.    $MDESC::Type = "";
  45.    $MDESC::Name = "";
  46.    $MDESC::Text = "";
  47.  
  48.    if (String::findSubStr(%mission,".dsc") == -1)
  49.       %mission = %mission @ ".dsc";
  50.    exec(%mission);
  51.  
  52.    if($MDESC::Type == "")
  53.       return false;
  54.  
  55.    for(%i = 0; %i < $MLIST::TypeCount; %i++) {
  56.       if($MLIST::Type[%i] == $MDESC::Type)
  57.          break;
  58.    }
  59.    if(%i == $MLIST::TypeCount) {
  60.       $MLIST::Type[%i] = $MDESC::Type;
  61.       $MLIST::TypeCount++;
  62.       $MLIST::MissionList[%i] = "";
  63.    }
  64.    %ct = $MLIST::Count;
  65.    $MLIST::Count++;
  66.  
  67.    $MLIST::EType[%ct] = $MDESC::Type;
  68.    $MLIST::EName[%ct] = File::getBase(%mission);
  69.    $MLIST::EText[%ct] = $MDESC::Text;
  70.    if($MDESC::Type != "Training")
  71.       $MLIST::MissionList[0] = %ct @ " " @ $MLIST::MissionList[0];
  72.    $MLIST::MissionList[%i] = %ct @ " " @ $MLIST::MissionList[%i];
  73.  
  74.    return true;
  75. }
  76.  
  77. function MissionList::build()
  78. {
  79.    MissionList::clear();
  80.  
  81.    %file = File::findFirst("missions\\*.dsc");
  82.    while(%file != "") {
  83.       MissionList::addMission(%file);
  84.       %file = File::findNext("missions\\*.dsc");
  85.    }
  86. }
  87.  
  88. function MissionList::initNextMission()
  89. {
  90.    for(%type = 1; %type < $MLIST::TypeCount; %type++) {
  91.       %prev = getWord($MLIST::MissionList[%type], 0);
  92.       %ml = $MLIST::MissionList[%type] @ %prev;
  93.       %prevName = $MLIST::EName[%prev];
  94.       for(%i = 1; (%mis = getWord(%ml, %i)) != -1; %i++) {
  95.          %misName = $MLIST::EName[%mis];
  96.          $nextMission[%prevName] = %misName;
  97.          %prevName = %misName;
  98.       }
  99.    }
  100. }
  101.  
  102.  
  103. // Go ahead and build the list
  104. MissionList::build();
  105. MissionList::initNextMission();
  106.